home *** CD-ROM | disk | FTP | other *** search
- // mfc_mdiDoc.h : interface of the CMfc_mdiDoc class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- #ifndef CMFC_MDIDOC_H
- #define CMFC_MDIDOC_H
-
- // Standard DataViews header:
- #include "Tfundecl.h" // T routines (screens, drawports & views)
-
-
- class CMfc_mdiDoc : public CDocument
- {
- protected: // create from serialization only
- CMfc_mdiDoc();
- DECLARE_DYNCREATE(CMfc_mdiDoc)
-
- // Attributes
- public:
-
- // Operations
- public:
- //
- // Returns the DataViews VIEW handle associated with this document.
- //
- VIEW GetDVview() { return m_DVview; }
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CMfc_mdiDoc)
- public:
- virtual void Serialize(CArchive& ar);
- virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
- //}}AFX_VIRTUAL
-
- // Implementation
- public:
- virtual ~CMfc_mdiDoc();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- protected:
- //
- // The DataViews VIEW handle associated with this document.
- //
- VIEW m_DVview;
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(CMfc_mdiDoc)
- // NOTE - the ClassWizard will add and remove member functions here.
- // DO NOT EDIT what you see in these blocks of generated code !
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- /////////////////////////////////////////////////////////////////////////////
-
- #endif
-